-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix warnings #19
base: master
Are you sure you want to change the base?
Fix warnings #19
Conversation
@NathanBnm It seems you checked out your
|
Also, because the class -public class Wallpaperize.Application : Granite.Application {
- public const string PROGRAM_ID = "com.github.philip-scott.wallpaperize";
+public class Wallpaperize.Application : Gtk.Application {
public const string PROGRAM_NAME = "Wallpaperize";
construct {
flags |= ApplicationFlags.HANDLES_OPEN;
-
- application_id = PROGRAM_ID;
- program_name = PROGRAM_NAME;
- exec_name = PROGRAM_ID;
- app_launcher = PROGRAM_ID;
- build_version = "1.0";
+ application_id = "com.github.philip-scott.wallpaperize";
} (I also removed the constant |
Oh yes you're right, I didn't noticed that, thanks for reporting. I'm going to check that ! |
@ryonakano I was unable to rebase branch, I don't really now why. But I just reverted changes from the other branch and this is better now. I added your diff too 😄 I'm still learning, mistakes can happen 👎 |
@Philip-Scott any news? |
@Philip-Scott would tout please mind to review and merge this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code looks good, I'd like to test it before merging but It should work correctly. Sorry, I turned off all Github notifications for this project a while back, and honestly just getting that motivation/energy to do coding related side-projects been hard lately.
No worries it would be awesome if you could take the time to review the PRs for this project 😁 |
Hi! I figured out that there were some warnings when building the app. Some things were deprecated so I fixed them.
Here were the warning messages:
Please only merge this PR after merging my last one about translations otherwise you may have some conflicts.
This PR is ready for review